home *** CD-ROM | disk | FTP | other *** search
- ; This script allows the user to check the version number of their
- ; flyer.library file and, if the Toaster: assign exists, their switcher.#?
- ; version.
- ; ®1997, TammyComeHome Productions...all bytes preserved...
-
- ECHO "The current version of your"
- ECHO "flyer.library file is:"
-
- CD LIBS:
-
- ECHO ""
- version flyer.library full
-
- IF EXISTS TOASTER:
-
- ECHO ""
- ECHO "The current version of your"
- ECHO "switcher file is:"
- ECHO ""
-
- CD TOASTER:PROGRAMS
- IF EXISTS SWITCHER.MAIN.AA
- version switcher.main.AA full
- ENDIF
-
- IF EXISTS SWITCHER.MAIN
- version switcher.main full
- ENDIF
-
- ENDIF
-
- IF NOT EXISTS TOASTER:
- ECHO ""
- ECHO ""
- ECHO "Well, you don't have your"
- ECHO "Toaster: assign active so"
- ECHO "I cannot give you your"
- ECHO "switcher file version..."
- ECHO ""
- ECHO "Roll 'em around..."
- ENDIF
-
- QUIT
-
- ;END script
-